summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/citra/citra_emu/features/settings/model/view/StringSingleChoiceSetting.java
blob: 057145d9da2de0f025cf3d3f4188dbf9fb29d813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package org.citra.citra_emu.features.settings.model.view;

import org.citra.citra_emu.features.settings.model.Setting;
import org.citra.citra_emu.features.settings.model.StringSetting;

public class StringSingleChoiceSetting extends SettingsItem {
    private String mDefaultValue;

    private String[] mChoicesId;
    private String[] mValuesId;

    public StringSingleChoiceSetting(String key, String section, int titleId, int descriptionId,
                                     String[] choicesId, String[] valuesId, String defaultValue, Setting setting) {
        super(key, section, setting, titleId, descriptionId);
        mValuesId = valuesId;
        mChoicesId = choicesId;
        mDefaultValue = defaultValue;
    }

    public String[] getChoicesId() {
        return mChoicesId;
    }

    public String[] getValuesId() {
        return mValuesId;
    }

    public String getValueAt(int index) {
        if (mValuesId == null)
            return null;

        if (index >= 0 && index < mValuesId.length) {
            return mValuesId[index];
        }

        return "";
    }

    public String getSelectedValue() {
        if (getSetting() != null) {
            StringSetting setting = (StringSetting) getSetting();
            return setting.getValue();
        } else {
            return mDefaultValue;
        }
    }

    public int getSelectValueIndex() {
        String selectedValue = getSelectedValue();
        for (int i = 0; i < mValuesId.length; i++) {
            if (mValuesId[i].equals(selectedValue)) {
                return i;
            }
        }

        return -1;
    }

    /**
     * Write a value to the backing int. If that int was previously null,
     * initializes a new one and returns it, so it can be added to the Hashmap.
     *
     * @param selection New value of the int.
     * @return null if overwritten successfully otherwise; a newly created IntSetting.
     */
    public StringSetting setSelectedValue(String selection) {
        if (getSetting() == null) {
            StringSetting setting = new StringSetting(getKey(), getSection(), selection);
            setSetting(setting);
            return setting;
        } else {
            StringSetting setting = (StringSetting) getSetting();
            setting.setValue(selection);
            return null;
        }
    }

    @Override
    public int getType() {
        return TYPE_STRING_SINGLE_CHOICE;
    }
}